GET api/audit/{authenticationToken}

This method retrieves the complete list of fields being audited by Epic.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
authenticationToken

Current authentication token

string

Required

Body Parameters

None.

Response Information

Resource Description

This returns the full list of fields being audited by Epic.

Collection of AuditFieldModel
NameDescriptionTypeAdditional information
Alias

This is the field alias presented to the end user when viewing audited information.

string

None.

Type

This shows the type of information being audited. The most common options are Loan, Customer, Property, and Setups (not currently available).

string

None.

Table

This is the name of the table in the database where the data resides.

string

None.

Column

This is the name of the column in the table in the database where the data resides.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Alias": "sample string 1",
    "Type": "sample string 2",
    "Table": "sample string 3",
    "Column": "sample string 4"
  },
  {
    "Alias": "sample string 1",
    "Type": "sample string 2",
    "Table": "sample string 3",
    "Column": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAuditFieldModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EpicAPI.Models">
  <AuditFieldModel>
    <Alias>sample string 1</Alias>
    <Column>sample string 4</Column>
    <Table>sample string 3</Table>
    <Type>sample string 2</Type>
  </AuditFieldModel>
  <AuditFieldModel>
    <Alias>sample string 1</Alias>
    <Column>sample string 4</Column>
    <Table>sample string 3</Table>
    <Type>sample string 2</Type>
  </AuditFieldModel>
</ArrayOfAuditFieldModel>